An HTML script is just 3 commands to define & convert into HTML code.
(Converted upon display  =  The process never needs to be reversed)



An html message is stored as a string with proprietary codes for:
- Insert Variable value		\v:variableName\
- Start color			\c:0x000000\
    (end color)			\c\
- Change alignment		\a:left\, a:center\, a:right\

When displaying, these codes are converted to HTML as:
\v:variableName\	(the variable's value)
			(this code is NOT parsed in the event viewer)
\c:0x000000\		<span style="color:red">
\c\			</span>
\a:center\		style="text-align:center"
			(place within the <div> tag)